home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Technical Documentation / Sample Code / DTS.Lib & Samples / Zippo / App.protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-22  |  831 b   |  46 lines  |  [TEXT/MPS ]

  1. #ifndef __APPPROTOS__
  2. #define __APPPROTOS__
  3.  
  4.  
  5. #include "DTS.Lib.protos.h"
  6.  
  7.  
  8. /* NOTE:  These prototypes are in a single file as they are the standard functions
  9. **        functions for this application shell.  You may wish to have separate
  10. **        files for the prototypes of functions you add to the shell.  They are all
  11. **        here in a single file for simplicity. */
  12.  
  13.  
  14.  
  15. /************** DoEvent.c **************/
  16.  
  17. void            DoEvent(EventRecord *event);
  18.  
  19.  
  20.  
  21. /************** EventLoop.c **************/
  22.  
  23. void            EventLoop(void);
  24.  
  25.  
  26.  
  27. /************** Help.c **************/
  28.  
  29. void            DynamicBalloonHelp(void);
  30.  
  31.  
  32.  
  33. /************** IdleTasks.c **************/
  34.  
  35. void            DoIdleTasks(EventRecord *event);
  36.  
  37.  
  38.  
  39. /************** Menu.c **************/
  40.  
  41. void            EnableOrDisableItem(MenuHandle menu, short item, Boolean enable);
  42.  
  43.  
  44.  
  45. #endif __APPPROTOS__
  46.